home *** CD-ROM | disk | FTP | other *** search
/ Amiga Tools 2 / Amiga Tools 2.iso / tools / packer / tar / src / makefile < prev    next >
Makefile  |  1995-03-09  |  345b  |  17 lines

  1. CC = lc
  2. CFLAGS = -O -DNONAMES -DDEFBLOCKING=20
  3.  
  4. SRCS = buffer.c create.c diffarch.c extract.c getoldopt.c getopt.c list.c \
  5.     port.c tar.c utime.c wildmat.c amiga.c
  6.  
  7. OBJS = buffer.o create.o diffarch.o extract.o getoldopt.o getopt.o list.o \
  8.     port.o tar.o utime.o wildmat.o amiga.o
  9.  
  10. all:    tar
  11.  
  12. tar:    $(OBJS)
  13.     blink with tar.lnk
  14.  
  15. clean:
  16.     rm *.o tar
  17.